home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / grabscreen.ifx < prev    next >
Text File  |  2004-08-03  |  314b  |  21 lines

  1. /*
  2.  * $VER: GrabScreen 2.0.1 (8.6.94)
  3.  *
  4.  * Arexx program for the ImageFX image processing system.
  5.  * Written by Thomas Krehbiel
  6.  *
  7.  * GrabScreen - simple screen grabbing utility.
  8.  *
  9.  */
  10.  
  11. OPTIONS RESULTS
  12.  
  13. DO FOREVER
  14.    GrabBuffer
  15.    IF rc ~= 0 THEN LEAVE
  16.    SaveBufferAs ILBM
  17.    IF rc ~= 0 THEN LEAVE
  18.    END
  19.  
  20. EXIT
  21.